home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / utilbest / move.doc < prev    next >
Encoding:
Text File  |  1987-01-15  |  1.4 KB  |  51 lines

  1.               MOVE
  2.  
  3. MOVE is sort of a cross between COPY and VDEL.
  4. PC DOS version 2.00 or greater is required.
  5. Options may be preceded by "/" or by " -".
  6.  
  7. Version 1.1 cleans up after a full-disk error and optionally
  8. allow the user to change the target disk.
  9.  
  10. The following is produced by entering MOVE > MOVE.DOC --
  11.  
  12.     [MOVE Version 1.1]
  13.     The MOVE utility is a COPY which prompts at each file.
  14.  
  15.     Syntax:
  16.       MOVE [SourceDir]FileSpec [TargetDir] [OptionList]
  17.  
  18.     OptionsList:
  19.       /Erase  -Erase  Erase each file after successful copy.
  20.       /Terse  -Terse  Suppress version message, instructions.
  21.       /Yes      -Yes      Automatic "Yes" response to each query.
  22.       /Change -Change Allow changing target disk on Full Disk.
  23.               [source and target disks must be different]
  24.  
  25.     Public Domain 1984,1987 by Lewis Haupt
  26.     Box 25363, Houston, Texas  77265
  27.  
  28. Examples --
  29.     -- Copy using full directory specifications.
  30.     C> MOVE C:\DIRA\*.* C:\DIRB:
  31.  
  32.     [MOVE Version 1.1]
  33.     Press Y to copy, N to skip, ESC to stop.
  34.  
  35.         Copy ABCD.DOC? Yes
  36.         Copy EDGHI.DOC? No
  37.         Copy JKL.DOC? Yes
  38.         Copy MNOP.DOC? Stop
  39.  
  40.     -- Copy from A: to current disk and directory.
  41.     -- Delete each file after it's moved.
  42.  
  43.     C> MOVE A:*.* /E
  44.     [MOVE Version 1.1]
  45.     Press Y to copy, N to skip, ESC to stop.
  46.  
  47.         Copy and erase ABCD.DOC? Yes
  48.         Copy and erase EDGHI.DOC? No
  49.         Copy and erase JKL.DOC? Yes
  50.         Copy and erase MNOP.DOC? Stop
  51.